home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Prog / M / LSC213.cpt / PackageMgr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-26  |  465 b   |  33 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  PackageMgr.h
  4.  *
  5.  *  Copyright (c) 1986, 1987 THINK Technologies, Inc.
  6.  *  These interfaces are based on information copyrighted
  7.  *  by Apple Computer, Inc., 1985, 1986, 1987.
  8.  *
  9.  */
  10.  
  11. #ifndef    _PackageMgr_
  12. #define _PackageMgr_
  13.  
  14. #ifndef _MacTypes_
  15. #include "MacTypes.h"
  16. #endif
  17.  
  18. /* package IDs */
  19. enum {
  20.     listMgr,
  21.     dskInit = 2,
  22.     stdFile,
  23.     flPoint,
  24.     trFunc,
  25.     intUtil,
  26.     bdConv
  27. };
  28.  
  29. /*  low-memory globals  */
  30. extern Handle AppPacks[] : 0xAB8;
  31.  
  32.  
  33. #endif _PackageMgr_